home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / www / phpmyadmin / sql.php < prev    next >
PHP Script  |  2004-09-24  |  36KB  |  855 lines

  1. <?php
  2. /* $Id: sql.php,v 2.31 2004/09/12 13:38:08 lem9 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Gets some core libraries
  7.  */
  8. require_once('./libraries/grab_globals.lib.php');
  9. require_once('./libraries/common.lib.php');
  10.  
  11.  
  12. /**
  13.  * Defines the url to return to in case of error in a sql statement
  14.  */
  15. // Security checkings
  16. if (!empty($goto)) {
  17.     $is_gotofile     = preg_replace('@^([^?]+).*$@s', '\\1', $goto);
  18.     if (!@file_exists('./' . $is_gotofile)) {
  19.         unset($goto);
  20.     } else {
  21.         $is_gotofile = ($is_gotofile == $goto);
  22.     }
  23. } // end if (security checkings)
  24.  
  25. if (empty($goto)) {
  26.     $goto         = (empty($table)) ? $cfg['DefaultTabDatabase'] : $cfg['DefaultTabTable'];
  27.     $is_gotofile  = TRUE;
  28. } // end if
  29. if (!isset($err_url)) {
  30.     $err_url = (!empty($back) ? $back : $goto)
  31.              . '?' . PMA_generate_common_url(isset($db) ? $db : '')
  32.              . ((strpos(' ' . $goto, 'db_details') != 1 && isset($table)) ? '&table=' . urlencode($table) : '');
  33. } // end if
  34.  
  35. // Coming from a bookmark dialog
  36. if (isset($fields['query'])) {
  37.     $sql_query = $fields['query'];
  38. }
  39.  
  40. // This one is just to fill $db
  41. if (isset($fields['dbase'])) {
  42.     $db = $fields['dbase'];
  43. }
  44.  
  45. // Now we can check the parameters
  46. PMA_checkParameters(array('sql_query', 'db'));
  47.  
  48. // instead of doing the test twice
  49. $is_drop_database = preg_match('@DROP[[:space:]]+DATABASE[[:space:]]+@i', $sql_query);
  50.  
  51. /**
  52.  * Check rights in case of DROP DATABASE
  53.  *
  54.  * This test may be bypassed if $is_js_confirmed = 1 (already checked with js)
  55.  * but since a malicious user may pass this variable by url/form, we don't take
  56.  * into account this case.
  57.  */
  58. if (!defined('PMA_CHK_DROP')
  59.     && !$cfg['AllowUserDropDatabase']
  60.     && $is_drop_database) {
  61.     // Checks if the user is a Superuser
  62.     // TODO: set a global variable with this information
  63.     // loic1: optimized query
  64.     if (!($result = PMA_DBI_select_db('mysql'))) {
  65.         require_once('./header.inc.php');
  66.         PMA_mysqlDie($strNoDropDatabases, '', '', $err_url);
  67.     } // end if
  68. } // end if
  69.  
  70.  
  71. /**
  72.  * Bookmark add
  73.  */
  74. if (isset($store_bkm)) {
  75.     require_once('./libraries/bookmark.lib.php');
  76.     PMA_addBookmarks($fields, $cfg['Bookmark'], (isset($bkm_all_users) && $bkm_all_users == 'true' ? true : false));
  77.     PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . $goto);
  78. } // end if
  79.  
  80.  
  81. /**
  82.  * Gets the true sql query
  83.  */
  84. // $sql_query has been urlencoded in the confirmation form for drop/delete
  85. // queries or in the navigation bar for browsing among records
  86. if (isset($btnDrop) || isset($navig)) {
  87.     $sql_query = urldecode($sql_query);
  88. }
  89.  
  90. /**
  91.  * Reformat the query
  92.  */
  93.  
  94. $GLOBALS['unparsed_sql'] = $sql_query;
  95. $parsed_sql = PMA_SQP_parse($sql_query);
  96. $analyzed_sql = PMA_SQP_analyze($parsed_sql);
  97. // Bug #641765 - Robbat2 - 12 January 2003, 10:49PM
  98. // Reverted - Robbat2 - 13 January 2003, 2:40PM
  99.  
  100. // lem9: for bug 780516: now that we use case insensitive preg_match
  101. // or flags from the analyser, do not put back the reformatted query
  102. // into $sql_query, to make this kind of query work without
  103. // capitalizing keywords:
  104. //
  105. // CREATE TABLE SG_Persons (
  106. //  id int(10) unsigned NOT NULL auto_increment,
  107. //  first varchar(64) NOT NULL default '',
  108. //  PRIMARY KEY  (`id`)
  109. // )
  110. //
  111. // Note: now we probably do not need to fill and use $GLOBALS['unparsed_sql']
  112. // but I let this intact for now.
  113. //
  114. //$sql_query = PMA_SQP_formatHtml($parsed_sql, 'query_only');
  115.  
  116.  
  117. // check for a real SELECT ... FROM
  118. $is_select = isset($analyzed_sql[0]['queryflags']['select_from']);
  119.  
  120. // If the query is a Select, extract the db and table names and modify
  121. // $db and $table, to have correct page headers, links and left frame.
  122. // db and table name may be enclosed with backquotes, db is optionnal,
  123. // query may contain aliases.
  124.  
  125. // (TODO: if there are more than one table name in the Select:
  126. // - do not extract the first table name
  127. // - do not show a table name in the page header
  128. // - do not display the sub-pages links)
  129.  
  130. if ($is_select) {
  131.     $prev_db = $db;
  132.     if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name'])) {
  133.         $table = $analyzed_sql[0]['table_ref'][0]['table_true_name'];
  134.     }
  135.     if (isset($analyzed_sql[0]['table_ref'][0]['db'])
  136.        && !empty($analyzed_sql[0]['table_ref'][0]['db'])) {
  137.         $db    = $analyzed_sql[0]['table_ref'][0]['db'];
  138.     }
  139.     else {
  140.         $db = $prev_db;
  141.     }
  142.     $reload  = ($db == $prev_db) ? 0 : 1;
  143. }
  144.  
  145. /**
  146.  * Sets or modifies the $goto variable if required
  147.  */
  148. if ($goto == 'sql.php') {
  149.     $goto = 'sql.php?'
  150.           . PMA_generate_common_url($db, $table)
  151.           . '&pos=' . $pos
  152.           . '&sql_query=' . urlencode($sql_query);
  153. } // end if
  154.  
  155.  
  156. /**
  157.  * Go back to further page if table should not be dropped
  158.  */
  159. if (isset($btnDrop) && $btnDrop == $strNo) {
  160.     if (!empty($back)) {
  161.         $goto = $back;
  162.     }
  163.     if ($is_gotofile) {
  164.         if (strpos(' ' . $goto, 'db_details') == 1 && !empty($table)) {
  165.             unset($table);
  166.         }
  167.         $active_page = $goto;
  168.         require('./' . PMA_securePath($goto));
  169.     } else {
  170.         PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . str_replace('&', '&', $goto));
  171.     }
  172.     exit();
  173. } // end if
  174.  
  175.  
  176. /**
  177.  * Displays the confirm page if required
  178.  *
  179.  * This part of the script is bypassed if $is_js_confirmed = 1 (already checked
  180.  * with js) because possible security issue is not so important here: at most,
  181.  * the confirm message isn't displayed.
  182.  *
  183.  * Also bypassed if only showing php code.or validating a SQL query
  184.  */
  185. if (!$cfg['Confirm']
  186.     || (isset($is_js_confirmed) && $is_js_confirmed)
  187.     || isset($btnDrop)
  188.  
  189.     // if we are coming from a "Create PHP code" or a "Without PHP Code"
  190.     // dialog, we won't execute the query anyway, so don't confirm
  191.     //|| !empty($GLOBALS['show_as_php'])
  192.     || isset($GLOBALS['show_as_php'])
  193.  
  194.     || !empty($GLOBALS['validatequery'])) {
  195.     $do_confirm = FALSE;
  196. } else {
  197.     $do_confirm = isset($analyzed_sql[0]['queryflags']['need_confirm']);
  198. }
  199.  
  200. if ($do_confirm) {
  201.     $stripped_sql_query = $sql_query;
  202.     require_once('./header.inc.php');
  203.     echo '<table border="0" cellpadding="3" cellspacing="0">' . "\n";
  204.     if ($is_drop_database) {
  205.         echo '    <tr>' . "\n"
  206.            . '        <td class="tblHeadError">' . "\n";
  207.         if($cfg['ErrorIconic']){
  208.             echo '        <img src="' .$pmaThemeImage .'s_warn.png" border="0" hspace="2" vspace="2" align="left" />';
  209.         }
  210.         echo $strDropDatabaseStrongWarning . ' <br />' . "\n"; 
  211.     } else {
  212.         echo '    <tr>' . "\n"
  213.            . '        <td class="tblHeadError">' . "\n";
  214.         if($cfg['ErrorIconic']){
  215.             echo '        <img src="' .$pmaThemeImage .'s_really.png" border="0" hspace="2" align="middle" />';
  216.         }
  217.     }
  218.     echo $strDoYouReally . "\n"
  219.        . '        </td>' . "\n"
  220.        . '    </tr>' . "\n"
  221.        . '    <tr>' . "\n"
  222.        . '        <td class="tblError">' . "\n"
  223.        . '            <tt>' . htmlspecialchars($stripped_sql_query) . '</tt> ?<br/>' . "\n"
  224.        . '        </td>' . "\n"
  225.        . '    </tr>' . "\n"
  226.        . '    <form action="sql.php" method="post">' . "\n"
  227.        . '    <tr>' . "\n"
  228.        . '        <td align="right">' . "\n"
  229.     ?>
  230.     <?php echo PMA_generate_common_hidden_inputs($db, (isset($table)?$table:'')); ?>
  231.     <input type="hidden" name="sql_query" value="<?php echo urlencode($sql_query); ?>" />
  232.     <input type="hidden" name="zero_rows" value="<?php echo isset($zero_rows) ? $zero_rows : ''; ?>" />
  233.     <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
  234.     <input type="hidden" name="back" value="<?php echo isset($back) ? $back : ''; ?>" />
  235.     <input type="hidden" name="reload" value="<?php echo isset($reload) ? $reload : 0; ?>" />
  236.     <input type="hidden" name="purge" value="<?php echo isset($purge) ? $purge : ''; ?>" />
  237.     <input type="hidden" name="cpurge" value="<?php echo isset($cpurge) ? $cpurge : ''; ?>" />
  238.     <input type="hidden" name="purgekey" value="<?php echo isset($purgekey) ? $purgekey : ''; ?>" />
  239.     <input type="hidden" name="show_query" value="<?php echo isset($show_query) ? $show_query : ''; ?>" />
  240.     <input type="submit" name="btnDrop" value="<?php echo $strYes; ?>" id="buttonYes" />
  241.     <input type="submit" name="btnDrop" value="<?php echo $strNo; ?>" id="buttonNo" />
  242.     <?php
  243.     echo '        </td>' . "\n"
  244.        . '    </tr>' . "\n"
  245.        . '    </form>' . "\n"
  246.        . '</table>';
  247.     echo "\n";
  248. } // end if
  249.  
  250.  
  251. /**
  252.  * Executes the query and displays results
  253.  */
  254. else {
  255.     if (!isset($sql_query)) {
  256.         $sql_query = '';
  257.     }
  258.     // Defines some variables
  259.     // loic1: A table has to be created -> left frame should be reloaded
  260.     if ((!isset($reload) || $reload == 0)
  261.         && preg_match('@^CREATE TABLE[[:space:]]+(.*)@i', $sql_query)) {
  262.         $reload           = 1;
  263.     }
  264.     // Gets the number of rows per page
  265.     if (empty($session_max_rows)) {
  266.         $session_max_rows = $cfg['MaxRows'];
  267.     } else if ($session_max_rows != 'all') {
  268.         $cfg['MaxRows']   = $session_max_rows;
  269.     }
  270.     // Defines the display mode (horizontal/vertical) and header "frequency"
  271.     if (empty($disp_direction)) {
  272.         $disp_direction   = $cfg['DefaultDisplay'];
  273.     }
  274.     if (empty($repeat_cells)) {
  275.         $repeat_cells     = $cfg['RepeatCells'];
  276.     }
  277.  
  278.     // SK -- Patch: $is_group added for use in calculation of total number of
  279.     //              rows.
  280.     //              $is_count is changed for more correct "LIMIT" clause
  281.     //              appending in queries like
  282.     //                "SELECT COUNT(...) FROM ... GROUP BY ..."
  283.  
  284.     // TODO: detect all this with the parser, to avoid problems finding
  285.     // those strings in comments or backquoted identifiers
  286.  
  287.     $is_explain = $is_count = $is_export = $is_delete = $is_insert = $is_affected = $is_show = $is_maint = $is_analyse = $is_group = $is_func = FALSE;
  288.     if ($is_select) { // see line 141
  289.         $is_group = preg_match('@(GROUP[[:space:]]+BY|HAVING|SELECT[[:space:]]+DISTINCT)[[:space:]]+@i', $sql_query);
  290.         $is_func =  !$is_group && (preg_match('@[[:space:]]+(SUM|AVG|STD|STDDEV|MIN|MAX|BIT_OR|BIT_AND)\s*\(@i', $sql_query));
  291.         $is_count = !$is_group && (preg_match('@^SELECT[[:space:]]+COUNT\((.*\.+)?.*\)@i', $sql_query));
  292.         $is_export   = (preg_match('@[[:space:]]+INTO[[:space:]]+OUTFILE[[:space:]]+@i', $sql_query));
  293.         $is_analyse  = (preg_match('@[[:space:]]+PROCEDURE[[:space:]]+ANALYSE@i', $sql_query));
  294.     } else if (preg_match('@^EXPLAIN[[:space:]]+@i', $sql_query)) {
  295.         $is_explain  = TRUE;
  296.     } else if (preg_match('@^DELETE[[:space:]]+@i', $sql_query)) {
  297.         $is_delete   = TRUE;
  298.         $is_affected = TRUE;
  299.     } else if (preg_match('@^(INSERT|LOAD[[:space:]]+DATA|REPLACE)[[:space:]]+@i', $sql_query)) {
  300.         $is_insert   = TRUE;
  301.         $is_affected = TRUE;
  302.     } else if (preg_match('@^UPDATE[[:space:]]+@i', $sql_query)) {
  303.         $is_affected = TRUE;
  304.     } else if (preg_match('@^SHOW[[:space:]]+@i', $sql_query)) {
  305.         $is_show     = TRUE;
  306.     } else if (preg_match('@^(CHECK|ANALYZE|REPAIR|OPTIMIZE)[[:space:]]+TABLE[[:space:]]+@i', $sql_query)) {
  307.         $is_maint    = TRUE;
  308.     }
  309.  
  310.     // Do append a "LIMIT" clause?
  311.     if (isset($pos)
  312.         && (!$cfg['ShowAll'] || $session_max_rows != 'all')
  313.         && !($is_count || $is_export || $is_func || $is_analyse)
  314.         && isset($analyzed_sql[0]['queryflags']['select_from'])
  315.         && !preg_match('@[[:space:]]LIMIT[[:space:]0-9,-]+$@i', $sql_query)) {
  316.         $sql_limit_to_append = " LIMIT $pos, ".$cfg['MaxRows'];
  317.         if (preg_match('@(.*)([[:space:]](PROCEDURE[[:space:]](.*)|FOR[[:space:]]+UPDATE|LOCK[[:space:]]+IN[[:space:]]+SHARE[[:space:]]+MODE))$@i', $sql_query, $regs)) {
  318.             $full_sql_query  = $regs[1] . $sql_limit_to_append . $regs[2];
  319.         } else {
  320.             $full_sql_query  = $sql_query . $sql_limit_to_append;
  321.         }
  322.         if (isset($display_query)) {
  323.             if (preg_match('@((.|\n)*)(([[:space:]](PROCEDURE[[:space:]](.*)|FOR[[:space:]]+UPDATE|LOCK[[:space:]]+IN[[:space:]]+SHARE[[:space:]]+MODE))|;)[[:space:]]*$@i', $display_query, $regs)) {
  324.                 $display_query  = $regs[1] . $sql_limit_to_append . $regs[3];
  325.             } else {
  326.                 $display_query  = $display_query . $sql_limit_to_append;
  327.             }
  328.         }
  329.     } else {
  330.         $full_sql_query      = $sql_query;
  331.     } // end if...else
  332.  
  333.     PMA_DBI_select_db($db);
  334.  
  335.     // If the query is a DELETE query with no WHERE clause, get the number of
  336.     // rows that will be deleted (mysql_affected_rows will always return 0 in
  337.     // this case)
  338.  
  339.     if ($is_delete
  340.         && preg_match('@^DELETE([[:space:]].+)?(FROM[[:space:]](.+))$@i', $sql_query, $parts)
  341.         && !preg_match('@[[:space:]]WHERE[[:space:]]@i', $parts[3])) {
  342.         $cnt_all_result = @PMA_DBI_try_query('SELECT COUNT(*) as count ' .  $parts[2]);
  343.         if ($cnt_all_result) {
  344.             list($num_rows) = PMA_DBI_fetch_row($cnt_all_result);
  345.             PMA_DBI_free_result($cnt_all_result);
  346.         } else {
  347.             $num_rows   = 0;
  348.         }
  349.     }
  350.  
  351.     //  E x e c u t e    t h e    q u e r y
  352.  
  353.     // Only if we didn't ask to see the php code (mikebeck)
  354.     if (isset($GLOBALS['show_as_php']) || !empty($GLOBALS['validatequery'])) {
  355.         unset($result);
  356.         $num_rows = 0;
  357.     }
  358.     else {
  359.         // garvin: Measure query time. TODO-Item http://sourceforge.net/tracker/index.php?func=detail&aid=571934&group_id=23067&atid=377411
  360.         list($usec, $sec) = explode(' ',microtime());
  361.         $querytime_before = ((float)$usec + (float)$sec);
  362.  
  363.         $result   = @PMA_DBI_try_query($full_sql_query, NULL, PMA_DBI_QUERY_STORE);
  364.  
  365.         list($usec, $sec) = explode(' ',microtime());
  366.         $querytime_after = ((float)$usec + (float)$sec);
  367.  
  368.         $GLOBALS['querytime'] = $querytime_after - $querytime_before;
  369.  
  370.         // Displays an error message if required and stop parsing the script
  371.         if ($error        = PMA_DBI_getError()) {
  372.             require_once('./header.inc.php');
  373.             $full_err_url = (preg_match('@^(db_details|tbl_properties)@', $err_url))
  374.                           ? $err_url . '&show_query=1&sql_query=' . urlencode($sql_query)
  375.                           : $err_url;
  376.             PMA_mysqlDie($error, $full_sql_query, '', $full_err_url);
  377.         }
  378.         unset($error);
  379.  
  380.         // Gets the number of rows affected/returned
  381.         // (This must be done immediately after the query because
  382.         // mysql_affected_rows() reports about the last query done)
  383.  
  384.         if (!$is_affected) {
  385.             $num_rows = ($result) ? @PMA_DBI_num_rows($result) : 0;
  386.         } else if (!isset($num_rows)) {
  387.             $num_rows = @PMA_DBI_affected_rows();
  388.         }
  389.  
  390.         // Checks if the current database has changed
  391.         // This could happen if the user sends a query like "USE `database`;"
  392.         $res = PMA_DBI_query('SELECT DATABASE() AS "db";');
  393.         $row = PMA_DBI_fetch_row($res);
  394.         if (is_array($row) && isset($row[0]) && (strcasecmp($db,$row[0]) != 0)) {
  395.             $db     = $row[0];
  396.             $reload = 1;
  397.         }
  398.         @PMA_DBI_free_result($res);
  399.         unset($res, $row);
  400.  
  401.         // tmpfile remove after convert encoding appended by Y.Kawada
  402.         if (function_exists('PMA_kanji_file_conv')
  403.             && (isset($textfile) && file_exists($textfile))) {
  404.             unlink($textfile);
  405.         }
  406.  
  407.         // Counts the total number of rows for the same 'SELECT' query without the
  408.         // 'LIMIT' clause that may have been programatically added
  409.  
  410.         if (empty($sql_limit_to_append)) {
  411.             $unlim_num_rows         = $num_rows;
  412.             // if we did not append a limit, set this to get a correct
  413.             // "Showing rows..." message
  414.             $GLOBALS['session_max_rows'] = 'all';
  415.         }
  416.         else if ($is_select) {
  417.  
  418.                 //    c o u n t    q u e r y
  419.  
  420.                 // If we are "just browsing", there is only one table,
  421.                 // and no where clause (or just 'WHERE 1 '),
  422.                 // so we do a quick count (which uses MaxExactCount)
  423.                 // because SQL_CALC_FOUND_ROWS
  424.                 // is not quick on large InnoDB tables
  425.  
  426.                 if (!$is_group
  427.                  && !isset($analyzed_sql[0]['queryflags']['union'])
  428.                  && !isset($analyzed_sql[0]['table_ref'][1]['table_name'])
  429.                  && (empty($analyzed_sql[0]['where_clause'])
  430.                    || $analyzed_sql[0]['where_clause'] == '1 ')) {
  431.  
  432.                     // "j u s t   b r o w s i n g"
  433.                     $unlim_num_rows = PMA_countRecords($db, $table, TRUE);
  434.  
  435.                 } else { // n o t   " j u s t   b r o w s i n g "
  436.  
  437.                     if (PMA_MYSQL_INT_VERSION < 40000) {
  438.                         // TODO: detect DISTINCT in the parser
  439.                         if (stristr($sql_query, 'DISTINCT')) {
  440.                             $count_what = 'DISTINCT ' . $analyzed_sql[0]['select_expr_clause'];
  441.                         } else {
  442.                             $count_what = '*';
  443.                         }
  444.  
  445.                         $count_query = 'SELECT COUNT(' . $count_what . ') AS count';
  446.                     }
  447.  
  448.                     // add the remaining of select expression if there is
  449.                     // a GROUP BY or HAVING clause
  450.                     if (PMA_MYSQL_INT_VERSION < 40000
  451.                      && $count_what =='*'
  452.                      && (!empty($analyzed_sql[0]['group_by_clause'])
  453.                         || !empty($analyzed_sql[0]['having_clause']))) {
  454.                         $count_query .= ' ,' . $analyzed_sql[0]['select_expr_clause'];
  455.                     }
  456.  
  457.                     if (PMA_MYSQL_INT_VERSION >= 40000) {
  458.                          // add select expression after the SQL_CALC_FOUND_ROWS
  459.  
  460.                             // for UNION, just adding SQL_CALC_FOUND_ROWS
  461.                             // after the first SELECT works.
  462.  
  463.                             // take the left part, could be:
  464.                             // SELECT
  465.                             // (SELECT
  466.                             $count_query = PMA_SQP_formatHtml($parsed_sql, 'query_only', 0, $analyzed_sql[0]['position_of_first_select'] + 1);
  467.                             $count_query .= ' SQL_CALC_FOUND_ROWS ';
  468.  
  469.                             // add everything that was after the first SELECT
  470.                             $count_query .= PMA_SQP_formatHtml($parsed_sql, 'query_only', $analyzed_sql[0]['position_of_first_select']+1);
  471.                     } else { // PMA_MYSQL_INT_VERSION < 40000
  472.  
  473.                         if (!empty($analyzed_sql[0]['from_clause'])) {
  474.                             $count_query .= ' FROM ' . $analyzed_sql[0]['from_clause'];
  475.                         }
  476.                         if (!empty($analyzed_sql[0]['where_clause'])) {
  477.                             $count_query .= ' WHERE ' . $analyzed_sql[0]['where_clause'];
  478.                         }
  479.                         if (!empty($analyzed_sql[0]['group_by_clause'])) {
  480.                             $count_query .= ' GROUP BY ' . $analyzed_sql[0]['group_by_clause'];
  481.                         }
  482.                         if (!empty($analyzed_sql[0]['having_clause'])) {
  483.                             $count_query .= ' HAVING ' . $analyzed_sql[0]['having_clause'];
  484.                         }
  485.                     } // end if
  486.  
  487.                     // if using SQL_CALC_FOUND_ROWS, add a LIMIT to avoid
  488.                     // long delays. Returned count will be complete anyway.
  489.                     // (but a LIMIT would disrupt results in an UNION)
  490.  
  491.                     if (PMA_MYSQL_INT_VERSION >= 40000
  492.                     && !isset($analyzed_sql[0]['queryflags']['union'])) {
  493.                         $count_query .= ' LIMIT 1';
  494.                     }
  495.  
  496.                     // run the count query
  497. //DEBUG echo "trace cq=" . $count_query . "<br/>";
  498.  
  499.                     if (PMA_MYSQL_INT_VERSION < 40000) {
  500.                         if ($cnt_all_result = PMA_DBI_try_query($count_query)) {
  501.                             if ($is_group && $count_what == '*') {
  502.                                 $unlim_num_rows = @PMA_DBI_num_rows($cnt_all_result);
  503.                             } else {
  504.                                 $unlim_num_rows = PMA_DBI_fetch_assoc($cnt_all_result);
  505.                                 $unlim_num_rows = $unlim_num_rows['count'];
  506.                             }
  507.                             PMA_DBI_free_result($cnt_all_result);
  508.                         } else {
  509.                             if (PMA_DBI_getError()) {
  510.  
  511.                                 // there are some cases where the generated
  512.                                 // count_query (for MySQL 3) is wrong,
  513.                                 // so we get here.
  514.                                 //TODO: use a big unlimited query to get
  515.                                 // the correct number of rows (depending
  516.                                 // on a config variable?)
  517.                                 $unlim_num_rows = 0;
  518.                             }
  519.                         }
  520.                     } else {
  521.                         PMA_DBI_try_query($count_query);
  522.                         // if (mysql_error()) {
  523.                         // void. 
  524.                         // I tried the case
  525.                         // (SELECT `User`, `Host`, `Db`, `Select_priv` FROM `db`)
  526.                         // UNION (SELECT `User`, `Host`, "%" AS "Db",
  527.                         // `Select_priv`
  528.                         // FROM `user`) ORDER BY `User`, `Host`, `Db`;
  529.                         // and although the generated count_query is wrong
  530.                         // the SELECT FOUND_ROWS() work! (maybe it gets the 
  531.                         // count from the latest query that worked)
  532.                         //
  533.                         // another case where the count_query is wrong:
  534.                         // SELECT COUNT( * ), f1 from t1 group by f1
  535.                         // and you click to sort on count( * )
  536.                         // }
  537.                         $cnt_all_result       = PMA_DBI_query('SELECT FOUND_ROWS() as count;');
  538.                         list($unlim_num_rows) = PMA_DBI_fetch_row($cnt_all_result);
  539.                         @PMA_DBI_free_result($cnt_all_result);
  540.                     }
  541.             } // end else "just browsing"
  542.  
  543.         } else { // not $is_select
  544.              $unlim_num_rows         = 0;
  545.         } // end rows total count
  546.  
  547.         // garvin: if a table or database gets dropped, check column comments.
  548.         if (isset($purge) && $purge == '1') {
  549.             require_once('./libraries/relation_cleanup.lib.php');
  550.  
  551.             if (isset($table) && isset($db) && !empty($table) && !empty($db)) {
  552.                 PMA_relationsCleanupTable($db, $table);
  553.             } elseif (isset($db) && !empty($db)) {
  554.                 PMA_relationsCleanupDatabase($db);
  555.             } else {
  556.                 // garvin: VOID. No DB/Table gets deleted.
  557.             } // end if relation-stuff
  558.          } // end if ($purge)
  559.  
  560.         // garvin: If a column gets dropped, do relation magic.
  561.         if (isset($cpurge) && $cpurge == '1' && isset($purgekey)
  562.             && isset($db) && isset($table)
  563.             && !empty($db) && !empty($table) && !empty($purgekey)) {
  564.             require_once('./libraries/relation_cleanup.lib.php');
  565.             PMA_relationsCleanupColumn($db, $table, $purgekey);
  566.  
  567.         } // end if column PMA_* purge
  568.     } // end else "didn't ask to see php code"
  569.  
  570.  
  571.     // No rows returned -> move back to the calling page
  572.     if ($num_rows < 1 || $is_affected) {
  573.         if ($is_delete) {
  574.             $message = $strDeletedRows . ' ' . $num_rows;
  575.         } else if ($is_insert) {
  576.             $message = $strInsertedRows . ' ' . $num_rows;
  577.             $insert_id = PMA_DBI_insert_id();
  578.             if ($insert_id != 0) {
  579.                 $message .= '<br />'.$strInsertedRowId . ' ' . $insert_id;
  580.             }
  581.         } else if ($is_affected) {
  582.             $message = $strAffectedRows . ' ' . $num_rows;
  583.         } else if (!empty($zero_rows)) {
  584.             $message = $zero_rows;
  585.         } else if (!empty($GLOBALS['show_as_php'])) {
  586.             $message = $strPhp;
  587.         } else if (!empty($GLOBALS['validatequery'])) {
  588.             $message = $strValidateSQL;
  589.         } else {
  590.             $message = $strEmptyResultSet;
  591.         }
  592.  
  593.         $message .= ' ' . (isset($GLOBALS['querytime']) ? '(' . sprintf($strQueryTime, $GLOBALS['querytime']) . ')' : '');
  594.  
  595.         if ($is_gotofile) {
  596.             $goto = PMA_securePath($goto);
  597.             // Checks for a valid target script
  598.             if (isset($table) && $table == '') {
  599.                 unset($table);
  600.             }
  601.             if (isset($db) && $db == '') {
  602.                 unset($db);
  603.             }
  604.             $is_db = $is_table = FALSE;
  605.             if (strpos(' ' . $goto, 'tbl_properties') == 1) {
  606.                 if (!isset($table)) {
  607.                     $goto     = 'db_details.php';
  608.                 } else {
  609.                     $is_table = @PMA_DBI_query('SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\';', NULL, PMA_DBI_QUERY_STORE);
  610.                     if (!($is_table && @PMA_DBI_num_rows($is_table))) {
  611.                         $goto = 'db_details.php';
  612.                         unset($table);
  613.                     }
  614.                     @PMA_DBI_free_result($is_table);
  615.                 } // end if... else...
  616.             }
  617.             if (strpos(' ' . $goto, 'db_details') == 1) {
  618.                 if (isset($table)) {
  619.                     unset($table);
  620.                 }
  621.                 if (!isset($db)) {
  622.                     $goto     = 'main.php';
  623.                 } else {
  624.                     $is_db    = @PMA_DBI_select_db($db);
  625.                     if (!$is_db) {
  626.                         $goto = 'main.php';
  627.                         unset($db);
  628.                     }
  629.                 } // end if... else...
  630.             }
  631.             // Loads to target script
  632.             if (strpos(' ' . $goto, 'db_details') == 1
  633.                 || strpos(' ' . $goto, 'tbl_properties') == 1) {
  634.                 $js_to_run = 'functions.js';
  635.             }
  636.             if ($goto != 'main.php') {
  637.                 require_once('./header.inc.php');
  638.             }
  639.             $active_page = $goto;
  640.             require('./' . $goto);
  641.         } // end if file_exist
  642.         else {
  643.             PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . str_replace('&', '&', $goto) . '&message=' . urlencode($message));
  644.         } // end else
  645.         exit();
  646.     } // end no rows returned
  647.  
  648.     // At least one row is returned -> displays a table with results
  649.     else {
  650.         // Displays the headers
  651.         if (isset($show_query)) {
  652.             unset($show_query);
  653.         }
  654.         if (isset($printview) && $printview == '1') {
  655.             require_once('./header_printview.inc.php');
  656.         } else {
  657.             $js_to_run = 'functions.js';
  658.             unset($message);
  659.             if (!empty($table)) {
  660.                 require('./tbl_properties_common.php');
  661.                 $url_query .= '&goto=tbl_properties.php&back=tbl_properties.php';
  662.                 require('./tbl_properties_table_info.php');
  663.             }
  664.             else {
  665.                 require('./db_details_common.php');
  666.                 require('./db_details_db_info.php');
  667.             }
  668.         }
  669.  
  670.         require_once('./libraries/relation.lib.php');
  671.         $cfgRelation = PMA_getRelationsParam();
  672.  
  673.         // Gets the list of fields properties
  674.         if (isset($result) && $result) {
  675.             $fields_meta = PMA_DBI_get_fields_meta($result);
  676.             $fields_cnt  = count($fields_meta);
  677.         }
  678.  
  679.         // Display previous update query (from tbl_replace)
  680.         if (isset($disp_query) && $cfg['ShowSQL'] == TRUE) {
  681.             $tmp_sql_query = $GLOBALS['sql_query'];
  682.             $GLOBALS['sql_query'] = $disp_query;
  683.             PMA_showMessage($disp_message);
  684.             $GLOBALS['sql_query'] = $tmp_sql_query;
  685.         }
  686.  
  687.         // Displays the results in a table
  688.         require_once('./libraries/display_tbl.lib.php');
  689.         if (empty($disp_mode)) {
  690.             // see the "PMA_setDisplayMode()" function in
  691.             // libraries/display_tbl.lib.php
  692.             $disp_mode = 'urdr111101';
  693.         }
  694.         if (!isset($dontlimitchars)) {
  695.             $dontlimitchars = 0;
  696.         }
  697.  
  698.         PMA_displayTable($result, $disp_mode, $analyzed_sql);
  699.         PMA_DBI_free_result($result);
  700.  
  701.         if ($disp_mode[6] == '1' || $disp_mode[9] == '1') {
  702.             echo "\n";
  703.             echo '<hr />' . "\n";
  704.  
  705.             // Displays "Insert a new row" link if required
  706.             if ($disp_mode[6] == '1') {
  707.                 $lnk_goto  = 'sql.php?'
  708.                            . PMA_generate_common_url($db, $table)
  709.                            . '&pos=' . $pos
  710.                            . '&session_max_rows=' . $session_max_rows
  711.                            . '&disp_direction=' . $disp_direction
  712.                            . '&repeat_cells=' . $repeat_cells
  713.                            . '&dontlimitchars=' . $dontlimitchars
  714.                            . '&sql_query=' . urlencode($sql_query);
  715.                 $url_query = '?'
  716.                            . PMA_generate_common_url($db, $table)
  717.                            . '&pos=' . $pos
  718.                            . '&session_max_rows=' . $session_max_rows
  719.                            . '&disp_direction=' . $disp_direction
  720.                            . '&repeat_cells=' . $repeat_cells
  721.                            . '&dontlimitchars=' . $dontlimitchars
  722.                            . '&sql_query=' . urlencode($sql_query)
  723.                            . '&goto=' . urlencode($lnk_goto);
  724.  
  725.                 echo '    <!-- Insert a new row -->' . "\n"
  726.                    . '    <a href="tbl_change.php' . $url_query . '">' . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_insrow.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strInsertNewRow . '"/>' : '') . $strInsertNewRow . '</a>';
  727.                 if ($disp_mode[9] == '1') {
  728.                     echo '  ';
  729.                 }
  730.                 echo "\n";
  731.             } // end insert new row
  732.  
  733.             // Displays "printable view" link if required
  734.             if ($disp_mode[9] == '1') {
  735.                 $url_query = '?'
  736.                            . PMA_generate_common_url($db, $table)
  737.                            . '&pos=' . $pos
  738.                            . '&session_max_rows=' . $session_max_rows
  739.                            . '&disp_direction=' . $disp_direction
  740.                            . '&repeat_cells=' . $repeat_cells
  741.                            . '&printview=1'
  742.                            . '&sql_query=' . urlencode($sql_query);
  743.                 echo '    <!-- Print view -->' . "\n"
  744.                    . '    <a href="sql.php' . $url_query
  745.                    . ((isset($dontlimitchars) && $dontlimitchars == '1') ? '&dontlimitchars=1' : '')
  746.                    . '" target="print_view">' 
  747.                    . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_print.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strPrintView . '"/>' : '')
  748.                    . $strPrintView . '</a>' . "\n";
  749.                 if (!$dontlimitchars) {
  750.                    echo   '      ' . "\n"
  751.                         . '    <a href="sql.php' . $url_query
  752.                         . '&dontlimitchars=1'
  753.                         . '" target="print_view">'
  754.                         . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_print.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strPrintViewFull . '" />' : '')
  755.                         . $strPrintViewFull . '</a>  ' . "\n";
  756.                 }
  757.             } // end displays "printable view"
  758.  
  759.             echo "\n";
  760.         }
  761.  
  762.         // Export link
  763.         // (the url_query has extra parameters that won't be used to export)
  764.         // (the single_table parameter is used in display_export.lib.php
  765.         //  to hide the SQL and the structure export dialogs)
  766.         if ($analyzed_sql[0]['querytype'] == 'SELECT' && !isset($printview)) {
  767.             if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name']) && !isset($analyzed_sql[0]['table_ref'][1]['table_true_name'])) {
  768.                 $single_table   = '&single_table=true';
  769.             } else {
  770.                 $single_table   = '';
  771.             }
  772.             echo '    <!-- Export -->' . "\n"
  773.                    . '      <a href="tbl_properties_export.php' . $url_query
  774.                    . '&unlim_num_rows=' . $unlim_num_rows
  775.                    . $single_table
  776.                    . '">' 
  777.                    . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_tblexport.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strExport . '" />' : '')
  778.                    . $strExport . '</a>' . "\n";
  779.         }
  780.  
  781.         // Bookmark Support if required
  782.         if ($disp_mode[7] == '1'
  783.             && ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table'] && empty($id_bookmark))
  784.             && !empty($sql_query)) {
  785.             echo "\n";
  786.  
  787.             $goto = 'sql.php?'
  788.                   . PMA_generate_common_url($db, $table)
  789.                   . '&pos=' . $pos
  790.                   . '&session_max_rows=' . $session_max_rows
  791.                   . '&disp_direction=' . $disp_direction
  792.                   . '&repeat_cells=' . $repeat_cells
  793.                   . '&dontlimitchars=' . $dontlimitchars
  794.                   . '&sql_query=' . urlencode($sql_query)
  795.                   . '&id_bookmark=1';
  796.             ?>
  797. <!-- Bookmark the query -->
  798.             <?php
  799.             echo "\n";
  800.             if ($disp_mode[3] == '1') {
  801.                 echo '    <i>' . $strOr . '</i>' . "\n";
  802.             }else echo '<br /><br />';
  803.             ?>
  804. <form action="sql.php" method="post" onsubmit="return emptyFormElements(this, 'fields[label]');">
  805. <table border="0" cellpadding="2" cellspacing="0">
  806. <tr><td class="tblHeaders" colspan="2"><?php
  807.      echo ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_bookmark.png" border="0" width="16" height="16" hspace="2" align="middle" alt="' . $strBookmarkThis . '" />' : '')
  808.         . $strBookmarkThis;
  809. ?></td></tr>
  810. <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td>
  811.     <?php echo $strBookmarkLabel; ?>:
  812.     <?php echo PMA_generate_common_hidden_inputs(); ?>
  813.     <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
  814.     <input type="hidden" name="fields[dbase]" value="<?php echo htmlspecialchars($db); ?>" />
  815.     <input type="hidden" name="fields[user]" value="<?php echo $cfg['Bookmark']['user']; ?>" />
  816.     <input type="hidden" name="fields[query]" value="<?php echo urlencode(isset($complete_query) ? $complete_query : $sql_query); ?>" />
  817.         </td><td>
  818.     <input type="text" name="fields[label]" value="" />
  819.         </td></tr>
  820. <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td align="right" valign="top">
  821.     <input type="checkbox" name="bkm_all_users" id="bkm_all_users" value="true" /></td>
  822.     <td><label for="bkm_all_users"><?php echo $strBookmarkAllUsers; ?></label></td>
  823. </tr>
  824. <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="2" align="right">
  825.     <input type="submit" name="store_bkm" value="<?php echo $strBookmarkThis; ?>" />
  826.     </td></tr>
  827. </table></form>
  828.             <?php
  829.         } // end bookmark support
  830.  
  831.         // Do print the page if required
  832.         if (isset($printview) && $printview == '1') {
  833.             echo "\n";
  834.             ?>
  835. <script type="text/javascript" language="javascript1.2">
  836. <!--
  837. // Do print the page
  838. if (typeof(window.print) != 'undefined') {
  839.     window.print();
  840. }
  841. //-->
  842. </script>
  843.             <?php
  844.         } // end print case
  845.     } // end rows returned
  846.  
  847. } // end executes the query
  848. echo "\n\n";
  849.  
  850. /**
  851.  * Displays the footer
  852.  */
  853. require_once('./footer.inc.php');
  854. ?>
  855.